home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / diskBoot.OpenProm / fsBoot.h < prev    next >
C/C++ Source or Header  |  1991-01-14  |  1KB  |  38 lines

  1. /*
  2.  * fsBoot.h --
  3.  *
  4.  *      Boot program include fileto get needed FS header files.
  5.  *
  6.  * Copyright 1987 Regents of the University of California
  7.  * All rights reserved.
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /sprite/src/kernel/fs/RCS/fsInt.h,v 8.9 89/05/14 13:59:20 brent Exp Locker: brent $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _FSBOOT
  20. #define _FSBOOT
  21.  
  22. #include "fs.h"
  23. #include "fslcl.h"
  24. #include "fsdm.h"
  25. #include "fsIndex.h"
  26. #include "fsio.h"
  27. #include "fsioFile.h"
  28. #include "fsioDevice.h"
  29. #include "boot.h"
  30.  
  31. extern    Fs_Device         fsDevice;
  32. extern    Fsdm_Domain        *fsDomainPtr;
  33. extern    Fsio_FileIOHandle    *fsRootHandlePtr;
  34.  
  35. #define mnew(type)    (type *)malloc(sizeof(type))
  36.  
  37. #endif _FSBOOT
  38.